1 package mobisnap.mobile_trx;
2
3 /***
4 * Base interface for variables, constants and functions
5 */
6 public interface MSQLTName
7 {
8 /***
9 * Returns the value of the variable
10 */
11 public Object getValue() throws Exception;
12
13 /***
14 * Returns the value of the variable
15 */
16 public Object getValue( Object[] params) throws Exception;
17
18 /***
19 * Sets the value of the given variable
20 */
21 public void setValue( Object obj) throws Exception;
22 }
This page was automatically generated by Maven